aboutsummaryrefslogtreecommitdiff
path: root/src/app/share/[...shareId]/page.tsx
blob: b9900eb7c78e47106709e38e8f8ee98613e575e2 (plain) (blame)
1
2
3
4
5
6
7
import { SharePage } from './SharePage';

export default async function ({ params }: { params: Promise<{ shareId: string[] }> }) {
  const { shareId } = await params;

  return <SharePage shareId={shareId[0]} />;
}